projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1929ae
)
(mark-sexp, mark-defun): Activate the mark.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 16 May 1993 15:28:52 +0000
(15:28 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 16 May 1993 15:28:52 +0000
(15:28 +0000)
lisp/emacs-lisp/lisp.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/lisp.el
b/lisp/emacs-lisp/lisp.el
index 9cd00517cc21e8af7e1b55c70f69d8d16d5250ed..9c4cbd1d788938668257bca8179646c2a0424df7 100644
(file)
--- a/
lisp/emacs-lisp/lisp.el
+++ b/
lisp/emacs-lisp/lisp.el
@@
-55,7
+55,8
@@
move to with the same argument."
(push-mark
(save-excursion
(forward-sexp arg)
- (point))))
+ (point))
+ nil t))
(defun forward-list (&optional arg)
"Move forward across one balanced group of parentheses.
@@
-188,7
+189,7
@@
The defun marked is the one that contains point or follows point."
(interactive)
(push-mark (point))
(end-of-defun)
- (push-mark (point))
+ (push-mark (point)
nil t
)
(beginning-of-defun)
(re-search-backward "^\n" (- (point) 1) t))